home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / spoc88 / loops / fortest.bas < prev    next >
BASIC Source File  |  1988-06-10  |  144b  |  7 lines

  1. 'A simple program demonstrating FOR..NEXT
  2. '  with the STEP modifier:
  3.  
  4. FOR i = 2 to 8 STEP 2
  5.     Print i
  6. NEXT i
  7. PRINT "Who do we appreciate?"